home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / lib / ubiquity / target-config / 31jockey_pkgs < prev    next >
Encoding:
Text File  |  2009-04-07  |  366 b   |  15 lines

  1. #!/bin/sh -e
  2.  
  3. # install all packages that were pulled in by enabling modules in
  4. # jockey, since we do save the X.org configuration already. Without the
  5. # accompanying driver packages (like nvidia-glx), the target system would be
  6. # wrecked.
  7.  
  8. PKGLIST=/var/cache/jockey/installed_packages
  9.  
  10. [ -e $PKGLIST ] || exit 0
  11.  
  12. for p in `cat $PKGLIST`; do
  13.     apt-install $p
  14. done
  15.